home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / programs / prog39 < prev    next >
Encoding:
Text File  |  1995-06-29  |  216 b   |  14 lines

  1. # first test of "send" command
  2. xtAppInitialize -class Program
  3.  
  4. xmPushButton .pressme managed
  5. .pressme activateCallback send_it
  6.  
  7. proc send_it {} {
  8.   send prog39 {puts stdout "hi there"}
  9. }
  10.  
  11. . realizeWidget
  12.  
  13. . mainLoop
  14.